home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / gnu / gfx-0_17.lha / graphics-0.17 / include / sys-defines.h < prev   
C/C++ Source or Header  |  1991-03-20  |  548b  |  36 lines

  1. #include <stdio.h>
  2. #include <ctype.h>
  3. #include <math.h>
  4.  
  5. #ifdef STDC_HEADERS
  6. #include <string.h>
  7. #include <stdlib.h>
  8. #else
  9. #ifdef    USG
  10. #include <string.h>
  11. #else
  12. #include <strings.h>
  13. #endif    /* USG */
  14.  
  15. #ifdef sequent
  16. #define NEED_DREM
  17. #define strchr index
  18. #define strrchr rindex
  19. #define NO_MALLOC_H
  20. #endif /* sequent */
  21.  
  22. #ifdef NeXT
  23. #define NO_MALLOC_H
  24. extern double atof(char *string);
  25. #endif /* NeXT */
  26.  
  27. #ifdef NO_MALLOC_H
  28. extern void *malloc();
  29. extern void *realloc();
  30. #else
  31. #include <malloc.h>
  32. #endif /* NO_MALLOC_H */
  33.  
  34.  
  35. #endif    /* STDC_HEADERS */
  36.